Scaffold AI Image Studio monorepo with mock job API, Next.js UI, and worker#1
Open
shensz2017 wants to merge 1 commit into
Open
Scaffold AI Image Studio monorepo with mock job API, Next.js UI, and worker#1shensz2017 wants to merge 1 commit into
shensz2017 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
.gitignoreand per-apppackage.jsonfiles to hostapps/api,apps/web, andapps/worker.apps/apiwith anexpressserver,JobStore(in-memory),JobService(simulated progress + outputs), a mock provider inapps/api/src/providers/mock.ts, and OpenAPI docs served at/docs.apps/webthat posts generation jobs, polls job status, displays queue/history, and includes styling inapps/web/styles/globals.css.apps/workerand a unit testapps/api/tests/job-store.test.ts, along withdocs/INSTALL.mddescribing local install and run commands.Testing
npm installfor the workspace, but the install failed due to a403 Forbiddenerror from the npm registry so dependencies were not installed.npm installfailed the automated test runner (vitest) was not executed and no tests were run.apps/api/tests/job-store.test.ts, ready to run once dependencies are available.docs/INSTALL.mdand recommendnpm run dev:apiandnpm run dev:webto start the stack.Codex Task